Now, groups can retrieve a list of the contacts in that group. I probably should...
[adiumx.git] / Utilities / Localization Utility Scripts / nibCopy
blobe7a69e6feee6a50190ab3453fc1e4f5c9f4329c4
1 #!/bin/sh
3 #################################
4 # Copies the contents of all nibs in the current directory to $1
5 #################################
7 destination="$1"
8 find . '(' -name "*.nib" ')' -prune -execdir cp "{}/classes.nib" "$1/{}" ';'
9 find . '(' -name "*.nib" ')' -prune -execdir cp "{}/keyedobjects.nib" "$1/{}" ';'